home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / wayfset.sql < prev    next >
Text File  |  2000-05-12  |  868b  |  22 lines

  1. /* RCSVER $Id: wayfset.sql,v 1.2 2000-05-08 15:27:32-05 randy Exp $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        wayfset.sql
  6. * Date:        05/24/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the wayfset table. This table contains setup data 
  9. *        for a fareset used in the wayfarer unit.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE wayfset
  13. (
  14.     fareset_id    NUMBER(38),    /* Fareset */
  15.     mcv_file    VARCHAR2(25),    /* Config file for wayfarer */
  16.     version        NUMBER(38),    /* Version of mcv file */
  17.     config_num      NUMBER(38)
  18.                     CONSTRAINT ref_wayfset REFERENCES configset(num)
  19.                     ON DELETE CASCADE,
  20.         CONSTRAINT pk_wayfset PRIMARY KEY (fareset_id, config_num)
  21. );
  22.